home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / hermite.6 < prev    next >
Text File  |  1996-07-16  |  789b  |  30 lines

  1. .TH HERMITE
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. HERMITE
  5.  
  6.  
  7.  
  8.  SurfaceType HERMITE( CurveType Bndry1, CurveType Bndry2,
  9.                       CurveType Tan1, CurveType Tan2 )
  10.  
  11.  or
  12.  
  13.  CurveType HERMITE( PointType Bndry1, PointType Bndry2,
  14.                     VectorType Tan1, VectorType Tan2 )
  15.  
  16. Constructs a cubic fit between Bndry1 and Bndry2 so that
  17. first derivative continuity constraints, as prescribed by Tan1 at
  18. Bndry1 and Tan2 at Bndry2, are preserved.
  19.  
  20. Returns either a curve or a surface, according to type of input parameters.
  21.  
  22. Example:
  23.  
  24.     h00 = HERMITE( point( 0, 0, 0 ),
  25.                    point( 1, 1, 0 ),
  26.                    vector( 1, 0, 0 ),
  27.                    vector( 1, 0, 0 ) );
  28. Constructs a curve in the shape of the first basis function of the cubic
  29. Hermite basis functions.
  30.